home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000347_news@columbia.edu _Thu Jan 25 17:49:55 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id RAA00266 for <kermit.misc@watsun>; Thu, 25 Jan 1996 17:49:54 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id RAA27728 for kermit.misc@watsun; Thu, 25 Jan 1996 17:49:49 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Swedish characters..
  8. Date: 25 Jan 1996 22:49:38 GMT
  9. Organization: Columbia University
  10. Lines: 49
  11. Message-ID: <4e91e2$r2a@apakabar.cc.columbia.edu>
  12. References: <lvka2gb5fh.fsf@ariel.pt.hk-r.se>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <lvka2gb5fh.fsf@ariel.pt.hk-r.se>,
  16. Andy Eskilsson  <mpt95aes@pt.hk-r.se> wrote:
  17. > The net finally reached me, and I would like to send my thanx to the
  18. > people behind kermit, who gave me a cosy package for communicating
  19. > with my unix hosts from my 386sx16 with 1 meg memory :-) (I am at the
  20. > moment looking for the closest dealer for the kermit book..)
  21. >
  22. Do you have a Web browser?  You can find out all about Kermit books at:
  23.  
  24.   http://www.columbia.edu/kermit/manuals.html
  25.  
  26. >Well I have a small problem, as I am swedish, I would like to
  27. >read/write swedish texts, with our three special characters, a with ",
  28. >a with *, and an o with ".
  29. >
  30. As it happens, Kermit knows all about Swedish and many other languages
  31. too.
  32.  
  33. >When I press the keys on my keyboard emacs gets: ^[D, ^[F and ^[T, not
  34. >∩┐╜∩┐╜∩┐╜ (wow how did I do that :-)), and when I manage to find some swedish
  35. >texts, the ∩┐╜∩┐╜∩┐╜ looks like down-arrow, left-arrow and rotated T.
  36. >
  37. That is because EMACS -- at least your copy of it -- is configured to
  38. treat characters that have their 8th bit set to 1 to be "meta" characters,
  39. i.e. commands.  Meta-A (M-A in EMACS jargon) means "A" with its 8th bit
  40. set, which is the same as the EMACS command ESC-A.
  41.  
  42. >Any hints how to fix this, what files to look into? Where to poke?
  43. >
  44. When you receive your "Using MS-DOS Kermit" manual, it will explain all
  45. about how to use character sets, but it doesn't tell you how to configure
  46. EMACS.  First of all, you can't use 8-bit characters until EMACS 19 (or
  47. MULE).  So if you want Swedish characters in EMACS 18.xx or earlier, you
  48. will have to use 7-bit Swedish ISO 646 "{", "|", "}", which Kermit also
  49. supports.
  50.  
  51. Leaving EMACS aside, for the moment, however, all you have to do in Kermit
  52. is (assuming your PC code page is 850 or 437):
  53.  
  54. For 8-bit ISO Latin-1:
  55.   SET TERMINAL BYTE 8
  56.   SET TERMINAL CHARACTER-SET LATIN1
  57.  
  58. For 7-bit Swedish ISO 646:
  59.   SET TERMINAL CHARACTER-SET SWEDISH
  60.  
  61. Your "special" Swedish keys should work correctly in both cases.
  62.  
  63. - Frank